* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY FONTS */
body {
  font-family: 'Roboto', sans-serif;
  background: #f9fafc;
  color: #1a1a1a;
  line-height: 1.6;
}

section {
  padding: 70px 8%;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 0 0 60px 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* YELLOW HEADINGS */
.yellow-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #f4a100;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

/* PARAGRAPHS */
.about p,
.locations p,
.documents p,
.available-in p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 18px;
  color: #374151;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 15px auto;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 16px;
  color: #374151;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.price-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin-top: 10px;
  color: #2563eb;
}

/* DOCUMENTS */
.documents ul {
  max-width: 500px;
  margin: auto;
  list-style: none;
  padding-left: 0;
}

.documents li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

/* AVAILABLE IN */
.available-in p {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
}

/* CTA SECTION */
.cta {
  text-align: center;
  background: #1e293b;
  color: white;
  border-radius: 40px;
  padding: 60px 20px;
  margin: 60px 8%;
}

/* Yellow Heading */
.cta h2 {
  color: #facc15;
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Paragraph */
.cta p {
  font-size: 17px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons Container */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Buttons */
.whatsapp-btn,
.call-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: white;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* Call */
.call-btn {
  background: #2563eb;
}

.call-btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}


/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {

  section {
    padding: 60px 6%;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 40px 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-image img {
    width: 320px;
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  section {
    padding: 50px 5%;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-image img {
    width: 100%;
    max-width: 280px;
  }

  .yellow-heading {
    font-size: 22px;
  }

  .about p,
  .locations p,
  .documents p,
  .available-in p {
    font-size: 14px;
  }

  .card {
    padding: 16px;
    font-size: 14px;
  }

  .price-card {
    padding: 18px;
  }

  .price {
    font-size: 18px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 15px;
  }
}
.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
/* HERO POSITION FIX */
.hero {
  position: relative;
}

/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
